home *** CD-ROM | disk | FTP | other *** search
/ PC Elektro 3 / PC-Elektro-3-cd1.bin / KBan 2.0 / KBANSRC.LZH / SRC / PROG / COMMON / BOOL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-31  |  238 b   |  15 lines

  1. /*
  2.  * the definition of boolean
  3.  * Copyright (C) 1996 Kazutaka Hirata <khirata@jove.acs.unt.edu>
  4.  */
  5.  
  6. #ifndef _BOOL_H_
  7. #define _BOOL_H_
  8.  
  9. #define FALSE 0
  10. #define false 0
  11. #define TRUE  1
  12. #define true  1
  13.  
  14. #endif /* _BOOL_H_ */
  15.